@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #2a2a2a;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "ROND" 0;
}

body {
    margin: 0;
    background-color: whitesmoke;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar img {
    width: 200px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 0;
    padding: 0;
}


.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #448e84;
}

.btn-comp {
    display: flex;
    gap: 10px;
}

.navbar2 {
    display: flex;
    display: none;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.navbar2 ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    gap: 40px;
    margin: 0;
    padding: 0;
}


.navbar2 a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar2 a:hover {
    color: #448e84;
}

.register-prop {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../pics/simple\ css\ bg.jpg);
    background-size: cover;
}

.register-prop h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #448e84;
}

.register-prop h2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    color: gray;
}

.courses {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.courses h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #448e84;
}

.courses h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: gray;
}

.dis-course {
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dis-course01 {
    width: fit-content;
    height: fit-content;

    border-radius: 50px;

    margin-bottom: 0;

}

.dis-course01:hover {
    transform: translateY(-8px) scale(1.02);
    transition: 0.5s;
}

.dis-course01 img {
    max-width: 300px;
    height: 200px;
    border-radius: 27px;
    width: fit-content;
    height: fit-content;

}

.dis-course01 p {
    position: relative;
    top: -26px;
    padding: 0px 20px;



    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    height: fit-content;

    background-color: rgba(0, 0, 0, 0.365);

    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}


.detl-dis-course01 {
    display: flex;
    width: 400px;
    max-height: 80px;

    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    background-color: #fff;
    align-items: center;
    align-content: center;

    box-shadow: #333 0px 0px 5px;
}

.arrow-img {
    rotate: -45deg;
}

.detl-dis-course01:hover+.arrow-img {
    box-shadow: #008080 0px 0px 5px;
    background-color: #008080;
    color: white;
    fill: white;
}

.detl-dis-course01:hover {
    box-shadow: #008080 0px 0px 5px;
    transform: translateY(-8px) scale(1.02);
    transition: 0.5s;
}

.detl-dis-course01-content {
    display: flex;

    align-items: center;
    justify-content: center;
    gap: 10px;
}

.detl-dis-course01-content img {
    width: 40px;
    height: 40px;
}

.detl-dis-course01-content div p:first-child {
    font-size: 12px;
    font-weight: 200;
    color: #000000;
    margin: 0;
    padding: 0;
}

.detl-dis-course01-content div p:last-child {
    font-size: 15px;

    color: #6d6868;
    margin: 0;
    padding: 0;
}

.detl-dis-course01 img {
    width: 40px;
    height: 40px;
}









.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
    padding: 40px;
    margin-top: -50px;

}


.founders div {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    cursor: pointer;
}


.founders div::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #c9cccc, #747474, #008080);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: 0.5s;
}


.founders div:hover {
    transform: translateY(-12px) scale(1.02);
}

.founders div:hover::before {
    opacity: 1;
}


.founders h2 {
    font-size: 18px;
    color: white;
    margin-bottom: 12px;
    font-weight: 500;
}


.founders b {
    color: #202020;
    font-weight: 700;
}


.founders h2:first-child {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00f2ff, #00ffb3);
    color: #000;
    font-size: 15px;
    margin-bottom: 20px;
}


.founders h2:last-child {
    color: #008080;
    line-height: 1.5;
}








.footer {
    background-color: #008080;
    color: white;
    padding: 20px;
    margin-top: 50px;




}

.f-content {
    display: flex;
    text-align: left;
    color: white;
    align-content: baseline;
    gap: 100px;
}

.f-section {
    max-width: 500px;
    color: white;
    margin: 30px auto auto auto;

    align-self: baseline;



    flex-wrap: wrap;
    gap: 100px;

}

.f-section img {
    width: 420px;
    margin-top: -20px;
    height: 100px;
}

.f-section p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: small;
    color: white;
}

.f-section p b {
    margin: 0;
    font-size: small;
    color: white;
}


form {
    max-width: 520px;
    margin: 0px 0;

    border-radius: 20px;



    display: flex;
    color: white;
    gap: 15px;
    align-items: center;
}


form input {
    flex: 1;
    height: 50px;
    padding: 0 18px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;

}

form input::placeholder {
    color: #3dcbe0;
}
































.button01 {
    height: 25px;
    width: 120px;
    font-size: small;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    color: white;
    background-color: #000000;

}

.button01:hover {
    box-shadow: .5px .5px 150px #252525;
}











.button {
    height: 50px;
    width: 150px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    color: white;
    background-color: #448e84;

}

.button:hover,
.button01:hover {
    box-shadow: .5px .5px 150px #252525;
}

.type1::after {
    content: "Register Now";
    height: 50px;
    width: 150px;
    background-color: black;
    color: #fff;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(50px);
    font-size: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.type1::before {

    height: 50px;
    width: 150px;
    background-color: #fff;
    color: #008080;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(0px) scale(1.2);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.type1:hover::after {
    transform: translateY(0) scale(1.2);
}

.type1:hover::before {
    transform: translateY(-50px) scale(0) rotate(120deg);
}





.button2 {
    height: 50px;
    width: 150px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    color: rgb(0, 0, 0);
    box-shadow: #333 0px 0px 2px;

}

.button2:hover {
    box-shadow: .5px .5px 150px #252525;
}

.type2::after {
    content: "View Now";
    height: 50px;
    width: 150px;
    background-color: black;
    color: #fff;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(50px);
    font-size: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.type2::before {

    height: 50px;
    width: 150px;
    background-color: #fff;
    color: #008080;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(0px) scale(1.2);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.type2:hover::after {
    transform: translateY(0) scale(1.2);
}

.type2:hover::before {
    transform: translateY(-50px) scale(0) rotate(120deg);
}























.button6 {
    height: 50px;
    width: 150px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    background-color: #448e84;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    z-index: 1;
}


.button6-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.button6 svg {
    z-index: 3;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.button6 .button-text {
    color: white;
    z-index: 3;
    position: relative;
    transition: transform 0.3s ease;
}


.button6:hover {
    box-shadow: .5px .5px 150px #252525;
    transform: translateY(-2px);
}

.button6:hover svg {
    transform: scale(1.1);
}

.button6:hover .button-text {
    transform: translateY(-1px);
}


.type6::after {
    content: "Contact Now";
    height: 50px;
    width: 150px;
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border-radius: 30px;
}

.type6::before {
    content: "";
    height: 50px;
    width: 150px;
    background-color: #448e84;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 30px;
}


.type6::before,
.type6::after {
    pointer-events: none;
}

.type6:hover::after {
    transform: translateY(0);
}

.type6:hover::before {
    transform: translateY(-100%);
}


.button6:hover .button6-content {
    transform: translateY(-50px);
}


.button6:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 37, 37, 0.2);
}


@media (max-width: 768px) {
    .button6 {
        height: 45px;
        width: 140px;
        font-size: 15px;
    }

    .button6 svg {
        width: 35px;
        height: 35px;
    }

    .type6::after,
    .type6::before {
        height: 45px;
        width: 140px;
    }
}















@media screen and (max-width: 916px) {


    .navbar img {
        width: 150px;
        height: auto;
    }

    .page-contents li {

        font-size: smaller;
    }


    .f-content {
        display: flex;
        justify-content: center;
        text-align: left;
        color: white;

        gap: 10px;
    }

    .f-section {
        width: fit-content;
        color: white;
        margin: 30px 0 0 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;

        gap: 0px;
    }

    .f-section img {
        width: 220px;
        height: auto;
        margin-top: -20px;
        display: inline-block;
    }

    .f-section p {
        width: 400px;
        display: inline;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: xx-small;
        color: white;
        display: inline;
    }

    .f-section2 {
        display: none;
    }

    .f-section p b {
        margin: 0;
        font-size: xx-small;
        color: white;
    }


    form {
        max-width: 400px;
        margin: 0px 0;
        display: flex;
    }


    form input {
        flex: 1;
        height: 25px;
        padding: 0 18px;
        border-radius: 30px;
        border: none;
        outline: none;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;

    }

    form input::placeholder {
        color: #3dcbe0;
    }
}

@media screen and (max-width: 820px) {


    .navbar .page-contents {
        display: none;
    }

    .navbar2 {
        display: flex;

        justify-content: center;
        font-size: medium;
        padding: 10px;

        align-items: center;
    }


    .navbar2 ul {
        display: flex;

        list-style: none;
        justify-content: space-around;
        gap: 40px;

        margin: 0;
        padding: 0;
    }





    .button {
        height: 35px;
        width: 120px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
        color: white;
        background-color: #448e84;
        font-size: small;

    }

    .button:hover,
    .button01:hover {
        box-shadow: .5px .5px 150px #252525;
    }

    .type1::after {
        content: "Register Now";
        height: 35px;
        width: 120px;
        background-color: black;
        color: #fff;
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translateY(50px);
        font-size: small;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in-out;
    }

    .type1::before {

        height: 35px;
        width: 120px;
        background-color: #fff;
        color: #008080;
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translateY(0px) scale(1.2);

        font-size: small;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in-out;
    }

















    .button6 {
        height: 35px;
        width: 120px;
        border-radius: 30px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
        background-color: #448e84;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 500;
        font-size: small;

        z-index: 1;
    }

    .button6 svg {
        z-index: 3;
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }



    .type6::after {
        content: "Contact Now";
        height: 35px;
        width: 120px;
        background-color: #000000;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 500;
        font-size: 16px;
        border-radius: 30px;
    }
}






